home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 6.st / GFABASIC.ARC / GFABASIC.TXT < prev    next >
Encoding:
Text File  |  1988-10-14  |  30.8 KB  |  874 lines

  1.                 GFA BASIC ver. 2.0 Quick Reference
  2.  
  3. The following list illustrates the GFA BASIC 2.0 command syntax 
  4. with required parameters.  Command line parameters placed betweeen 
  5. brackets [ ] are optional.
  6.  
  7. Source: GFA BASIC Reference Card, Copyright 1988 MichTron, Inc.
  8.  
  9.                           VARIABLE NAMES
  10.  
  11. A variable must begin with a letter, but may consist of any 
  12. combination of letters and numbers, up to a maximum length of 255 
  13. characters.
  14.  
  15.                         TYPES OF VARIABLES
  16.  
  17. var       Real variable, a six-byte floating point value, accurate 
  18.           to 11 decimal places.  In Scientific Notation, exponents 
  19.           of up to 154 are permitted.
  20. var%      Integer variable, a four byte value representing a whole 
  21.           number between -2147483648 and +2147483647.
  22. var!      Boolean variable.  Requires 2 bytes for storage and may 
  23.           only represent TRUE(-1) or FALSE(0) values.
  24. var$      String variable.  May contain up to 32,767 alpha-
  25.           numberic characters.
  26.  
  27.                          ARRAY VARIABLES
  28.  
  29. var(i)    One dimension real array.
  30. var%(i)   One dimension integer array.
  31. var!(i)   One dimension Boolean array.
  32.  
  33.                              POINTERS
  34.  
  35. *var      Real pointer.
  36. *var%     Integer pointer.
  37. *var!     Boolean pointer.
  38. *var$     String pointer.
  39. *var()    Array pointer.
  40.  
  41.                             CONSTANTS
  42.  
  43. ADDRIN    Addr of AES address input block.
  44. ADDROUT   Addr of AES address output block.
  45. BASEPAGE  Addr of the basepage of GFA BASIC.
  46. CONTRL    Addr of VDI control block.
  47. FALSE     0
  48. GB        Addr of start of AES.
  49. GCONTROL  Addr of AES control block.
  50. GINTIN    Addr of AES integer input block.
  51. GINTOUT   Addr of AES integer output block.
  52. HIMEM     Addr of first byte after GFA BASIC.
  53. INTIN     Addr of VDI integer input block.
  54. INTOUT    Addr of VDI integer output block.
  55. PI        3.1415926536
  56. PTSIN     Addr of VDI point input block.
  57. PTSOUT    Addr of VDI point output block.
  58. TRUE      -1
  59. VDIBASE   Addr of GEM storage area used by GFA BASIC.
  60. WINDTAB   Addr of window parameter table.
  61.  
  62.                             OPERATORS
  63.  
  64. ()        Parenthesis.
  65. +         Assign possitive value (plus sign).
  66. -         Assign negatie value (minus sign).
  67. ^         Exponent (raise to a power).
  68. A*B       Floating point multiplication.
  69. A+B       Real and integer addition.
  70. A-B       Real and integer subtraction.
  71. A/B       Floating point division.
  72. A<B       Less than.
  73. A<=B      Less than or equal to.
  74. A<>B      Not equal to.
  75. A=B       Equal in value.
  76. A>B       Greater than.
  77. A>=B      Greater than or equal to.
  78. A$+B$     String concatenation.
  79. AND       Logical conjunction, bit-wise operation.
  80. DIV       Integer division.
  81. EQV       Logical equivalence.
  82. IMP       Logical implication.
  83. MOD       Returns remainder from integer division.
  84. NOT       Logical negation, bit wise operation.
  85. OR        Logical comparison, bit wise operation.
  86. XOR       Logical exclusive OR, bit wise operation.
  87.  
  88.                       MATHEMATICAL FUNCTIONS
  89.  
  90. ABS(x)    Returns the absolute value.
  91. ADD x,y   Increases the value of x by y (addition).
  92. ATN(r)    Calculates arc-tangent of an angle in radians.
  93. COS(n)    Calculates the cosine of a number in radians.
  94. DEC x,y   Decrements x by y.
  95. DIV x,y   Divides x by y.
  96. EVEN(x)   Returns a -1 value for an even number; otherwise returns 
  97.           0.
  98. EXP(n)    Calculates value of an exponent.
  99. FIX(x)    Returns the integer portion of a value.
  100. FRAC(x)   Returns the fractional portion of a value.
  101. INC x     Increments x by 1.
  102. INT(x)    Returns the integer portion of a value.
  103. LOG(x)    Returns the natural logarithm of a value.
  104. LOG10(x)  Returns the base 10 logarithm of a value.
  105. MUL  x,y  Multiplies x by y.
  106. ODD(x)    Returns a -1 value for an odd number; otherwise returns 
  107.           0.
  108. RANDOM(x) Returns a random integer number between 0 and x.
  109. RND(dummy)
  110.           Returns a random value between 0 and 1.
  111. SGN(x)    Determines the sign of a value (1, -1 or 0).
  112. SIN(angle)
  113.           Calculates the sine in radians of a number.
  114. SQR(n)    Calculates square root.
  115. SUB x,y   Decreases x by y.
  116. TAN(angle)
  117.           Calculates the tangent of an angle in radians.
  118. TRUNC(x)  Returns the integer portion of a value.
  119. VOID expr Calls function without returning a value.
  120.  
  121.                          SYSTEM COMMANDS
  122.  
  123. CLEAR     Clears all variables and arrays.
  124. CLR [var,var...]
  125.           Deletes variables.
  126. CONT      Resumes program execution.
  127. DEFLIST 1 Defines listing format.  In this case, commands, 
  128.           functions and variable names are written with the first 
  129.           letter capitalized.
  130. DEFLIST 0 Defines listing format.  In this case, commands and 
  131.           function names are written in all capital letters.
  132. EDIT      Terminates program and returns to the editor.
  133. END       Closes all files and terminates program.
  134. ERASE(field)
  135.           Deletes an array and releases dimensioned area.
  136. LIST      Stores program presently in memory on a disk in ASCII 
  137.           format.
  138. LIST "CON:"
  139.           Displays listing of the program currently in memory on 
  140.           the output screen.
  141. LIST "file.lst"
  142.           Stores program currently in memory on a disk in ASCII 
  143.           format as "file.lst".
  144. LLIST     Sends listing of program to an attached printer.
  145. NEW       Removes program from memory.
  146. QUIT      Terminates program and returns to GEM Desktop.
  147. REM,',!   Enables remarks to be included in a program.
  148. RUN       Immediate mode command.  Executes a program in memory.
  149. STOP      Stops a program.
  150. SYSTEM    Terminates program and returns to GEM Desktop.
  151. TROFF     Disables trace mode.
  152. TRON      Enables trace mode.
  153.  
  154.                          PROGRAM CONTROL
  155.  
  156.                         Looping Structures
  157.  
  158. FOR var=a [DOWN]TO b [STEP c]
  159.    statement
  160. NEXT var
  161.  
  162. GOTO label
  163.  
  164. DO
  165.    statement
  166. LOOP
  167.  
  168. REPEAT
  169.    statement
  170. UNTIL condition
  171.  
  172. WHILE condition
  173.    statement
  174. WEND
  175.  
  176. IF condition [THEN]
  177.    statement
  178. [ELSE]
  179.    statement
  180. ENDIF
  181.  
  182. EXIT IF condition
  183.  
  184.                  Subroutine (Procedure) Controls
  185.  
  186. PROCEDURE name
  187.    LOCAL a,b,c Declares variable to be valid only in this 
  188.                subroutine.
  189.    statement
  190.    statement
  191. RETURN
  192.  
  193. GOSUB name
  194.  
  195. ON expr GOSUB name
  196.  
  197.                             Functions
  198.  
  199. DEFFN name [(list)]=expr
  200. DEFFN name$[(list)]=string expr
  201. FN name[(expr[,expr...])]
  202. FN name$[(expr[,expr...])]
  203.  
  204.                          STRING COMMANDS
  205.  
  206. &H        Precedes hexadecimal value.
  207. &O        Precedes octal value.
  208. &X        Precedes binary value.
  209. ASC(a$)   Returns the ASCII code of the first character in a 
  210.           string.
  211. BIN$(a)   Transforms a value into a character string expression in 
  212.           binary (base 2) form.
  213. CHR$(i)   Returns the character which corresponds to the ASCII value 
  214.           of i.
  215. CVD(a$)   Converts an 8-byte character string in MBASIC format 
  216.           into a number.
  217. CVF(a$)   Converts a 6-byte character string in GFA BASIC format 
  218.           into a number.
  219. CVI(a$)   Converts a 2-byte character string into a 16-bit 
  220.           integer value.
  221. CVL(a$)   Converts a 4-byte character string into a 32-bit 
  222.           integer value.
  223. CVS(a$)   Converts a 4-byte Atari BASIC character string into a 
  224.           32-bit integer value.
  225. FRE(0)    Returns free storage space in bytes.
  226. HEX$(a)   Converts a value into a character string expression in 
  227.           hexadecimal (base 16) form.
  228. INSTR(a$,b$[,n])
  229.           Returns the position of a specified character within a 
  230.           string.
  231. INSTR([n,]a$,b$)
  232.           Returns the position of a specified character within a 
  233.           string.
  234. LEFT$(a$,n)
  235.           Returns all characters beginning with the nth character 
  236.           from the left side of a string.
  237. LEN(a$)   Returns the length fo a string.
  238. LSET var=string
  239.           Left justifies a string.
  240. MID$(a$,n1[,n2])
  241.           Returns the character(s) from the position(s) specified 
  242.           by n1 and n2 from within a string.
  243. MID$(a$,n1[,n2])=b$
  244.           Inserts a specified character or group of characters 
  245.           into a string, at the positions specified by n1 and n2.
  246. MKD$(i)   Converts a number into MBASIC-compatible 8-byte format.
  247. MKF$(i)   Converts a number into GFA BASIC 6-byte format.
  248. MDI$(i)   Converts a 16-bit integer into a 2-byte string.
  249. MKL$(i)   Converts a 32-bit integer into a 4-byte string.
  250. MKS$(i)   Converts a number into an Atari BASIC compatible 4-byte 
  251.           format.
  252. OCT$(a)   Converts a value into a character string expression in 
  253.           octal (base 8) form.
  254. RIGHT$(a$,n)
  255.           Returns all characters beginning with the nth character 
  256.           from the right side of a string.
  257. RSET var=string
  258.           right justifies a string.
  259. SPACE$(n) Creates a string of n spaces.
  260. STR$(a)   Converts a decimal value into a character string.
  261. STRING$(n,"c")
  262.           Creates a string of n characters specified by the 
  263.           included string.
  264. STRING$(n,c)
  265.           Creates a string of n characters specified by the ASCII 
  266.           code c.
  267. UPPER$(a$)
  268.           Converts a string to all upper case characters.
  269. VAL(a$)   Returns the numerical value of the first character in 
  270.           a string.
  271. VAL?(a$)  Returns the number of characters in a string which can 
  272.           be converted into a numerical value.
  273.  
  274.                        FIELDS AND POINTERS
  275.  
  276. ARRAYFILL FIELD(),N
  277.           Assigns the value n to all elements in an array.
  278. ARRPTR(var)
  279.           Returns the address of the descriptor of a string or 
  280.           array.
  281. DIM(a$,x) Sets dimensions of an array or arrays.
  282. DIM?(field)
  283.           Returns the number of elements in an array.
  284. MAX(expr) Returns the greatest value from a list of expressions.
  285. MIN(expr) Returns the least value from a list of expressions.
  286. OPTION "Text"
  287.           Passes control commands to the GFA Compiler.
  288. OPTION BASE 0
  289.           Sets the lower limit of an array to zero.
  290. OPTION BASE 1
  291.           Sets the lower limit of an array to one.
  292. SWAP *ptr,fvar()
  293.           Exchanges the elements in the field pointed to by *ptr 
  294.           with the elements in the array fvar().
  295. SWAP fvar1(),fvar2()
  296.           Exchanges the values of the elements in the array 
  297.           fvar1() with the elements of fvar2().
  298. SWAP var1,var2
  299.           Exchages values of var1 with var2.
  300. TYPE(*var)
  301.           Returns the type of variable at which the pointer is 
  302.           set:
  303.               -1=Error
  304.                0=Real
  305.                1=String
  306.                2=Integer
  307.                3=Boolean
  308.                4=Real array
  309.                5=String array
  310.                6=Integer array
  311.                7=Boolean array
  312. VARPTR(var)
  313.           Returns the address or starting address of a variable.
  314.  
  315.                        ASSIGNMENT FUNCTIONS
  316.  
  317. DATA list,list,...
  318.           Holds data items, or a list of data items, which may be 
  319.           placed into a variable or an array by using the READ 
  320.           function.
  321. [LET] var=expr
  322.           Assigns the value of an expression to a variable.
  323. READ var  Reads values from a DATA statement and assigns them to a 
  324.           variable, var.
  325. RESTORE [label]
  326.           Places the DATA pointer at the beginning of the program, 
  327.           or after the label specified.
  328.  
  329.                          INPUT AND OUTPUT
  330.  
  331. CRSCOL    Determines the cursor column.
  332. CRSLIN    Determines the cursor row.
  333. DEFNUM n  Rounds all numbers to n digits before output.
  334. FORM INPUT
  335.           Permits the input of a character string during program 
  336.           execution.
  337. FORM INPUT n AS a$
  338.           Permits a character string to be changed during program 
  339.           execution.  n is the max length of the string variable.
  340. HARDCOPY  Sends screen contents to an attached printer.  (Same as 
  341.           pressing the <Alternate><Help> combination.)
  342. INKEY$    Reads a character from the keyboard.
  343. INP(n)    Reads one byte at a time from an input device.
  344.                0 = LST: (printer)
  345.                1 = AUX: (RS-232)
  346.                2 = CON: (keyboard)
  347.                3 = MID: (MIDI port)
  348. INP?(n)   Determines input status of specified peripheral device 
  349.           (as shown above).
  350. INPUT     Permits information to be entered from the keyboard 
  351.           during program execution.
  352. INPUT#    Permits information to be entered from a specified 
  353.           channel during program execution.
  354. INPUT$(len,a$)
  355.           Reads len characters from the keyboard or from a file.
  356. LINE INPUT
  357.           Permits a string to be entered during program execution.
  358. LINE INPUT#
  359.           Permits a string to be entered from a specified channel 
  360.           during program execution.
  361. LPOS(n)   Returns the column where the printer head is located.
  362. OUT n,c   Transfers one byte to a specified output device:
  363.                0 - 3 (same as above)
  364.                4 = IKB: (Intelligent keyboard; use with caution)
  365.                5 = VID: (Screen)
  366. OUT?(n)   Returns status of specified output device.
  367. POS(dummy)
  368.           Returns the column in which the cursor is located.
  369. PRINT or LPRINT or PRINT #
  370.           Displayes information of the screen or specified data 
  371.           channel.
  372.    AT(x,y)
  373.           Prints at a position specified by the curosor column and 
  374.           row.
  375.    TAB(n) Moves cursor position to the nth column.
  376.    SPC(n) Prints a number of spaces specified by n.
  377.    ;      Carriage return/line feed suppressed after printing.
  378.    ,      Carriage return/line feed suppressed.  Cursor positioned 
  379.           at intervals of 16 columns.
  380.    '      One space is left in for each apostrophe.
  381. PRINT USING
  382.           Formatted output of digit and character strings.
  383.              Format      Description
  384.              #           Reserves spaces for digits.
  385.              .           Positions decimal point.
  386.              +           Prints plus sign.
  387.              -           Reserves space for minus sign.
  388.              *           Reserves space for digits, but prints * 
  389.                          if reserved digit is not used.
  390.              $$ or $     Prefix $.
  391.              ,           Inserta a comma.
  392.              ^^^^        Displaya in exponential form.
  393.              !           Indicates first character of a string is 
  394.                          printed.
  395.              &           Whole string is printed.
  396.              \..\        As many characters are printed as there 
  397.                          are characters between the \\.
  398.              _           Treats next character in the format 
  399.                          string as a character, rather than as a 
  400.                          format character.
  401. WRITE     Outputs data to the screen.
  402. WRITE#    Stores data in a sequential file.
  403.  
  404.                     SEQUENTIAL AND RANDOM DATA
  405.  
  406. CLOSE#n   Closes a data channel.
  407. EOF(#n)   Determines whether the file pointer has reached the end 
  408.           of the file.
  409. FIELD #n,expr AS a$ [,expr2 AS a2$...]
  410.           Divides a record into arrays.
  411. GET #n    Reads a record from a random acess file.
  412. INP(#n)   Reads one byte of data from a file on data channel n.
  413. INPUT#n   Obtains data from file on channel n.
  414. INPUT$(i) Reads a specified number of character from the keyboard.
  415. LINE INPUT#n,a$
  416.           Obtains data from channel n.
  417. LOC#n     Returns the location of the file pointer for the fifle 
  418.           with the channel number n.
  419. LOF(#n)   Returns the length of the file with the channel number 
  420.           n.
  421. OPEN "mode" [#]n,"file name"[,len]
  422.           Opens a data channel to a disk.
  423.              Mode        Open for
  424.              A           Append
  425.              I           Input
  426.              O           Output
  427.              R           Random access
  428.              U           Reading and writing
  429. OUT#n,c   Transfers one byte of data to a file on data channel n.
  430. PRINT#n   Sends data to a file on data channel n.
  431. PUT#n     Writes a record to a random access file.
  432. RELSEEK#n,x
  433.           Moves the file pointer x bytes in a file with the 
  434.           channel number n.
  435. SEEK#n,x  Sets file pointer on the xth byte of the file associated 
  436.           with channel number n.
  437. WRITE#n   Stores data in a sequential file.
  438.  
  439.                       GENERAL DISK COMMANDS
  440.  
  441. BGET #n,adr,len
  442.           Reads from a specified data channel directly into memory.
  443. BLOAD "file",adr
  444.           Loads a disk file directly to a specified area of 
  445.           memory.
  446. BPUT #n,adr,len
  447.           Writes a specified area of memory directly to disk.
  448. BSAVE "file",adr,len
  449.           Saves a specified area of memory to disk.
  450. CHAIN "file.bas"
  451.           Loads a program file into memory and starts the program.
  452. EXEC(flag,"file",cmd,env)
  453.           Loads and executes machine language or compiled programs 
  454.           from disk.
  455. EXIST("file.ext")
  456.           Determines whether a specified file is present on the 
  457.           disk (-1 if present, 0 if not present).
  458. KILL "file"
  459.           Deletes a disk file.
  460. LIST "file.lst"
  461.           Saves a file to disk in ASCII format.
  462. LOAD "file"
  463.           Loads a file into memory.
  464. NAME "oldfile" AS "newfile"
  465.           Renames a file as specified.
  466. PSAVE "file"
  467.           Saves a file in protected format.
  468. SAVE "file"
  469.           Saves a file to disk.
  470.  
  471.                        DIRECTORY FUNCTIONS
  472.  
  473. CHDIR "name"
  474.           Changes directories.
  475. CHDRIVE n Sets the default disk drive.
  476. DFREE(n)  Returns the amount of free storage space on the 
  477.           specified disk.
  478. DIR ["A:\*.*"]
  479.           Lists files on a disk.
  480. DIR$(n)   Returns the name of the active directory for drive 
  481.           number n.
  482. FILES ["A:\*.*"]
  483.           Lists files on a disk.
  484. FILESELECT "filespec","filename",x$
  485.           Calls the GEM file selector box.
  486. MKDIR "name"
  487.           Creates a new directory.
  488. RMDIR "name"
  489.           Removes a directory folder.
  490.  
  491.                         GRAPHICS COMMANDS
  492.  
  493. BITBLT s%(),d%(),p%()
  494.           Raster copying command.
  495. BMOVE src,dest,cnt
  496.           Fast movement of blocks of memory.
  497. BOX x1,y1,x2,y2
  498.           Draws a rectangle.
  499. CIRCLE x,y,r,s,e
  500.           Draws a circle or arc.
  501. CLS       Clears the screen.
  502. COLOR c   Sets the color for drawing.
  503. DEFFILL c,a$
  504.           Sets user defined color and fill pattern as defined in 
  505.           a$.
  506. DEFFILL c,a,b
  507.           Sets fill color and pattern.
  508. DEFLINE style,width,type,start,end
  509.           Sets line style, line width, type of line, and starting 
  510.           and ending point types.
  511. DEFMARK c,t,g
  512.           Sets color, type and corner points for POLYMARK.
  513. DEFTEXT c,s,r,g
  514.           Defines color, style, rotation and size of text.
  515. DRAW [TO] x1,y1
  516.           Draws and connects two or more points with straight 
  517.           lines.
  518. DRAW x1,y1 [TO] x2,y2
  519.           Draws and connects two or more points with straight 
  520.           lines.
  521. ELLIPSE x,y,rx,ry
  522.           Draws an ellipse.
  523. FILL x,y  Fills an area with a specified pattern.
  524. GET x1,y1,x2,y2,a$
  525.           Reads a rectangle from the screen and stores it in a 
  526.           string.
  527. GRAPHMODE n
  528.           Sets graphic mode:
  529.              1 Replace
  530.              2 Transparent
  531.              3 XOR
  532.              4 Reverse transparent
  533. LINE x1,y1,x2,y2
  534.           Connects two points with a straight line.
  535. PBOX x1,y1,x2,y2
  536.           Draws a filled rectangle.
  537. PCIRCLE x,y,r,s,e
  538.           Draws a filled circle or arc.
  539. PLOT x,y  Draws a single point on the screen.
  540. POINT(x,y)
  541.           Returns the color value of a specified pixel location.
  542. POLYFILL n,x(),y()
  543.           Draws a filled-in shape with n corner points.
  544. POLYLINE n,x(),y()
  545.           Draws a shape with n corner points.
  546. POLYMARK n,x(),y()
  547.           Marks n corner points.
  548. PRBOX x1,y1,x2,y2
  549.           Draws a filled rectangle with rounded corners.
  550. PUT x1,y1,a$
  551.           Places a string obtained with GET onto the screen.
  552. RBOX x1,y1,x2,y2
  553.           Draws a rectangle with rounded corners.
  554. SETCOLOR i,n
  555.           Defines color components.
  556. SETCOLOR i,r,g,b
  557.           Defines red, green and blue color components.
  558. SGET a$   Copies screen memory into a 32K string.
  559. SPRITE a$,x,y
  560.           Puts a predefined sprite on the screen at the location 
  561.           specified by x and y.
  562. SPUT a$   Copies 32K byte string to screen memory.
  563. TEXT x,y,a$
  564.           Places text on the screen at the position specified by x 
  565.           and y.
  566. VSYNC     Wait for vertical blank.
  567.  
  568.                          MOUSE FUNCTIONS
  569.  
  570. DEFMOUSE a$
  571.           Defines a mouse form.
  572. DEFMOUSE n
  573.           Selects a predefined mouse form.
  574. HIDEM     Hides mouse.
  575. MOUSE x,y,k
  576.           Returns the mouse position (x,y) and status of the mouse 
  577.           buttons (k).
  578. MOUSEK    Returns status of mouse buttons.
  579.              0 None pressed
  580.              1 Left button down
  581.              2 Right button down
  582.              3 Both down
  583. MOUSEX    Returns horizontal coordinate of the mouse pointer.
  584. MOUSEY    Returns vertical coordinate of the mouse pointer.
  585. SHOWM     Shows mouse.
  586.  
  587.                          SOUND FUNCTIONS
  588.  
  589. SOUND voc,vol,note,oct[,dur]
  590.           Generates tones.
  591. SOUND voc,vol,period[,dur]
  592.           Generates tones.
  593. WAVE voc,env,form,len,dur
  594.           Defines waveform for sound.
  595.  
  596.                           TIME FUNCTIONS
  597.  
  598. DATE$     Returns system data as a character string in format 
  599.           mm/dd/yyyy.
  600. PAUSE n   Suspends program execution for n/50 seconds.
  601. SETTIME t$,d$
  602.           Sets the time and date.
  603. TIME$     Returns the system time as a character string in the 
  604.           format hh:mm:ss.
  605. TIMER     Returns the time since the system was turned on in 
  606.           200ths of a second.
  607.  
  608.                         WINDOWS AND MENUS
  609.  
  610. ALERT icon,text,string,button,button text,x
  611.           Creates an Alert box
  612.              Icon        Displays
  613.              0           Nothing.
  614.              1           Exclamation point.
  615.              2           Question mark.
  616.              3           Stop sign.
  617. CLEARW n  Clease the contents of the window specified by n.
  618. CLOSEW 0  Switches to normal screen display.
  619. CLOSEW n  Closes the window specified by n.
  620. FULLW n   Enlarges window n to full screen size.
  621. INFOW n,"info"
  622.           Defines a new information line for the window specified 
  623.           by n.
  624. MENU field()
  625.           Creates menu bar.
  626. MENU KILL Deactivates menu bar.
  627. MENU n,x  Alters menu items.
  628.              0           Removes checkmark.
  629.              1           Places checkmark.
  630.              2           Writes in plain letters, cannot be 
  631.                          selected.
  632.              3           Writes in normal letters, can be 
  633.                          selected.
  634. MENU OFF  Disables menu titles in "normal" mode.
  635. MENU(f)   Detects events for ON MENU GOSUB.
  636. ON MENU   Handles menu selection.
  637. ON MENU BUTTON c,m,s GOSUB name
  638.           Defines procedure for handling mouse button presses.
  639. ON MENU GOSUB name
  640.           Defines precedure which handles menu selection.
  641. ON MENU IBOX a,x,y,b,h GOSUB name
  642.           Defines the procedure for when the mouse moves into a 
  643.           defined rectangular area.
  644. ON MENU KEY GOSUB name
  645.           Defines procedure which handles keyboard input.
  646. ON MENU MESSAGE GOSUB name
  647.           Defines the procedure for handling GEM messages.
  648. ON MENU OBOX a,x,y,b,h GOSUB name
  649.           Defines the procedure for when the mouse moves out of a 
  650.           defined rectangular area.
  651. OPENW 0   Opens the whole screen as a window without a menu bar.
  652. OPENW n,x,y
  653.           Opens a specified window at the coordinates x,y.
  654. TITLEW n,"title"
  655.           Assigns a new name to the window specified by n.
  656.  
  657.                       MACHINE LEVEL COMMANDS
  658.  
  659. BIOS(n,parameter list)
  660.           Calls TOS BIOS functions.
  661. C:var(parameters)
  662.           Calls a compiled C or machine language subprogram 
  663.           located in memory at the address specified by var.  
  664.           Parameters are transferred as in C.
  665. CALL var [(parameters)]
  666.           Calls a machine language program located in memory at 
  667.           the address sppecified by var.
  668. DPEEK(addr)
  669.           Returns the contents of two bytes of memory.
  670. DPOKE addr,n
  671.           Writes two bytes to addresses in memory.
  672. GEMDOS(n,parameter list)
  673.           Calls TOS GEMDOS functions.
  674. GEMSYS    Calls the AES function specified by the function number 
  675.           entered in the GCONTRL block.
  676. GEMSYS(n) Calls the AES functions specified by n.
  677. LPEEK(addr)
  678.           Returns the contents of four bytes from an address in 
  679.           memory.
  680. LPOKE addr,n
  681.           Writes four bytes to an address in memory.
  682. MONITOR   Calls a memory resident monitor program or a commands 
  683.           extension.
  684. PEEK(addr)
  685.           Returns the contents of one byte of memory.
  686. POKE addr,n
  687.           Writes one byte to an address in memory.
  688. RESERVE n Increases or decreases the amount of memory available to 
  689.           GFA BASIC.
  690. SDPOKE addr,n
  691.           Writes two bytes to an address in memory in the 68000's 
  692.           supervisor mode.
  693. SLPOKE addr,n
  694.           Writes four bytes to an address in memory in the 68000's 
  695.           supervisor mode.
  696. SPOKE addr,n
  697.           Writes one byte to an address in memory in the 68000's 
  698.           supervisor mode.
  699. VDISYS    Calls VDI function with the function number entered in 
  700.           the CONTRL block.
  701. VDISYS(n) Calls VDI function without entering the function number 
  702.           in the CONTRL block.
  703.  
  704.                              ON BREAK
  705.  
  706. ON BREAK  Deactivates ON BREAK GOSUB, or restores break 
  707.           conditions.
  708. ON BREAK CONT
  709.           Deactivates <Control><Alternate><Shift> break key 
  710.           sequence.  ON BREAK may be used to reactivate keys.
  711. ON BREAK GOSUB proc_name
  712.           Jumps to a procedure when a break key sequence is 
  713.           encountered.
  714. ON expression GOSUB proc_list
  715.           Permits program redirection to a list of procedures.
  716.  
  717.                           ERROR HANDLING
  718.  
  719. ERR       Returns the error code of any error which may have 
  720.           occurred.
  721. ERROR n   Simulates the occurrence of an error with the specified 
  722.           error code (n).
  723. FATAL     Returns the value of 0 or -1 depending on which type of 
  724.           an error was enountered.  Generally, -1 is an 
  725.           unrecoverable error.
  726. ON ERROR  Switches to normal error handling methods if an 
  727.           alternate means was previously defined.
  728. ON ERROR GOSUB proc_name
  729.           Defines an error handling procedure.
  730.  
  731.                      GFA BASIC ERROR MESSAGES
  732.  
  733. 0         Division by zero.
  734. 1         Overflow.
  735. 2         Number not integer (-21473648 to 2147483647).
  736. 3         Number not byte (0-255).
  737. 4         Number not word (0-65535).
  738. 5         Square root only for positive numbers.
  739. 6         Logarithm only for number greater than zero.
  740. 7         Undefined error.
  741. 8         Memory full.
  742. 9         Function or command not possible.
  743. 10        String too long (max. size 32,767 characters).
  744. 11        Not GFA BASIC v. 1.0 program.
  745. 12        Program too long, memory full, NEW.
  746. 13        Not GFA BASIC program file, too short, NEW.
  747. 14        Field dimensioned twice.
  748. 15        Field not dimensioned.
  749. 16        Field index too large.
  750. 17        DIM index too large.
  751. 18        Wrong number of indexes.
  752. 19        Procedure not found.
  753. 20        Label not found.
  754. 21        On Open only "I"nput, "O"utput, "R"andom, "A"ppend and 
  755.           "U"pdate allowed.
  756. 22        File already open.
  757. 23        File # wrong.
  758. 24        File not opened.
  759. 25        Input wrong, not numeric.
  760. 26        End of file reached.
  761. 27        Too many points for Polyline/Polyfill, max. 128.
  762. 28        Field must be one dimensional.
  763. 29        Number of points larger than field.
  764. 30        Merge not an ASCII file.
  765. 31        Merge line too long -- aborted.
  766. 32        ==>Syntax error -- program aborted.
  767. 33        Label not defined.
  768. 34        Insufficient data.
  769. 35        Data not numeric.
  770. 36        Syntax error in DATA unpaired quotes.
  771. 37        Disk full.
  772. 38        Command not possible in direct mode.
  773. 39        Program error -- GOSUB not possible.
  774. 40        CLEAR not possible in FOR - NEXT loops and procedures.
  775. 41        CONT not possible.
  776. 42        Too few parameters.
  777. 43        Expression too complex.
  778. 44        Function not defined.
  779. 45        Too many parameters.
  780. 46        Parameter wrong -- must be numeric.
  781. 47        Parameter wrong -- must be string.
  782. 48        Open "R" -- record length wrong.
  783. 49        Undefined error.
  784. 50        Not an "R" file.
  785. 51        Only one field per Open "R" allowed.
  786. 52        Fields larger than record length.
  787. 53        Too many fields (max. 9).
  788. 54        GET/PUT fields string length wrong.
  789. 55        GET/PUT record number wrong.
  790. 56        String has wrong length for SPRITE.
  791. 90        Error in LOCAL.
  792. 92        Resume (next) not possible FATAL, FOR or LOCAL.
  793. 100       Version # of GFA BASIC.
  794.  
  795.             TOS AND GFA BASIC COMPILER ERROR MESSAGES
  796.  
  797. -1        General error.
  798. -2        Drive not ready -- time exceeded.
  799. -3        Undefined error.
  800. -4        CRC error -- disk checking sum wrong.
  801. -5        Bad request -- invalid command.
  802. -6        Seek error -- track not found.
  803. -7        Unknown media -- boot sector wrong.
  804. -8        Sector not found.
  805. -9        No paper.
  806. -10       Write fault.
  807. -11       Read fault.
  808. -12       General error 12.
  809. -13       Disk is write protected.
  810. -14       Disk has been changed.
  811. -15       Unknown device.
  812. -16       Bad sector (verify).
  813. -17       Insert other disk.
  814. -32       Invalid function number.
  815. -33       File not found.
  816. -34       Path not found.
  817. -35       Too many files open.
  818. -36       Access not possible.
  819. -37       Invalid handle.
  820. -39       Memory full.
  821. -40       Invalid memory block address.
  822. -46       Invalid drive ID.
  823. -49       No further files.
  824. -64       GEMDOS range error -- seek wrong?
  825. -65       GEMDOS internal error.
  826. -66       Not binary program file.
  827. -67       Memory block error.
  828.  
  829.               68000 EXCEPTION (BOMB) ERROR MESSAGES
  830.  
  831. CODE      BOMBS          MEANING
  832. 102       2 bombs        Bus error -- PEEK or POKE possibly wrong.
  833. 103       3 bombs        Address error.  Odd word address.  
  834.                          Possibly in DPOKE, DPEEK, LPOKE or LPEEK.
  835. 104       4 bombs        Illegal instruction; execution of an 
  836.                          invalid 68000 assembler command.
  837. 105       5 bombs        Division by zero in 68000 ML.
  838. 106       6 bombs        CHK exception.
  839. 107       7 bombs        TRAPV exception.
  840. 108       8 bombs        Privilege violation.
  841. 109       9 bombs        Trace exception.
  842.  
  843.                     VT52 TERMINAL ESCAPE CODES
  844.  
  845. ESCAPE    FUNCTION
  846. CHR$(27)+
  847.  
  848. A         Cursor up one line.
  849. B         Cursor down one line.
  850. C         Cursor right one char.
  851. D         Cursor left one char.
  852. E         Clear screen.
  853. H         Home cursor.
  854. I         Cursor up one line with scroll.
  855. J         Erase to end of page.
  856. K         Clear to end of line.
  857. L         Insert line.
  858. M         Delete line.
  859. Y,r,c     Position cursor at row, column.
  860. b,f       Set foreground color.
  861. c,b       Set background color.
  862. d         Erase to start of page.
  863. e         Show cursor
  864. f         Hide cursor.
  865. j         Save cursor.
  866. k         Restore cursor.
  867. l         Erase line.
  868. o         Erase to start of line.
  869. p         Reverse video.
  870. q         Normal video.
  871. v         Wrap at end of line.
  872. w         Discard end of line.
  873.  
  874.